mini\Database\Attributes\NotMapped class

Documentation

Excludes property from database mapping

Query: Parsed internally by Dehydrator — never use ReflectionClass directly.

Use for computed properties or properties that should not be persisted.

Example:

#[NotMapped]
public string $fullName;

#[NotMapped]
public array $cachedData = [];

Source

src/Database/Attributes/NotMapped.php:22-24